home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-15 | 779 b | 33 lines | [TEXT/MPS ] |
- on translateStack stackName,newFileName,componentSubType
- open file newFileName
- if the result is not empty then
- answer the result
- exit translateStack
- end if
-
- lock screen
- lock messages
- lock recent
- push card
- go stack stackName
- if the result is not empty then exit translateStack
-
- push card
- repeat with i = 1 to the number of cards
- go card i
- repeat with j = 1 to the number of card fields
- write card field j & return & return to file newFileName
- end repeat
- repeat with k = 1 to the number of bg fields
- write bg field k & return & return to file newFileName
- end repeat
- end repeat
- close file newFileName
- pop card
- pop card
- unlock recent
- unlock messages
- unlock screen
- close card window
- end translateStack
-